1project('wintest', 'c')
2
3# Test that we can produce an implib for an executable on Windows, and that it's
4# name can be set, and that it is installed along with the executable
5
6executable('prog', 'prog.c', install: true, implib: true)
7executable('prog2', 'prog.c', install: true, implib: 'burble', install_dir: get_option('bindir'))
8